type crypto/md5.digest

13 uses

	crypto/md5 (current package)
		md5.go#L38: type digest struct {
		md5.go#L45: func (d *digest) Reset() {
		md5.go#L59: func (d *digest) MarshalBinary() ([]byte, error) {
		md5.go#L72: func (d *digest) UnmarshalBinary(b []byte) error {
		md5.go#L114: 	d := new(digest)
		md5.go#L119: func (d *digest) Size() int { return Size }
		md5.go#L121: func (d *digest) BlockSize() int { return BlockSize }
		md5.go#L123: func (d *digest) Write(p []byte) (nn int, err error) {
		md5.go#L157: func (d *digest) Sum(in []byte) []byte {
		md5.go#L164: func (d *digest) checkSum() [Size]byte {
		md5.go#L191: 	var d digest
		md5block.go#L14: func blockGeneric(dig *digest, p []byte) {
		md5block_decl.go#L13: func block(dig *digest, p []byte)